@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

* { 
margin: 0; 
padding: 0; 
box-sizing: border-box; 
} 

body{
	max-width: 100%; 
   font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  background-color: #fefefe;
}

.logo{
    height: 40px;
}

.top-bar{
    text-align: center;
    color: #fefefe;
    background-color: #07324E;
    padding: 10px;
}

.btn-1{
    background-color: #3498DB;
    color: #fefefe;
    padding: 11px;
    border-radius: 0;
    border: solid 3px #3498DB;
}

.btn-1:hover{
background-color: transparent;
border: solid 3px #3498DB;
color: #3498DB;
}


.btn-2{
background-color: transparent;
border: solid 3px #3498DB;
color: #3498DB;
padding: 11px;
    border-radius: 0;
}



.btn-2:hover{
    background-color: #3498DB;
    color: #fefefe;
    
    border: solid 3px #3498DB;
}





.color-1{
    color: #f5f5f5;
}

.color-2{
    color: #3498DB;
}

.color-3{
    color: grey;
}

.project{
    background-color: #f5f5f5;
    padding: 7px;
    border-radius: 10px;
}

.project-title{
    padding-top: 10px;
    font-weight: bold;
}

.project-image{
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}


.news-image{
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
}

.news-title{
    padding-top: 10px;
    font-weight: bold;
}

.team-image{
    height: 200px;
    width: 200px;
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    border: solid 4px #487DB2;

}

.team-title{
     color: #2c3e50;
     text-decoration: none;
}

.post-banner{
    background-color: #3498DB;
    padding: 2px;
    color: #f5f5f5;
}

.custom-list{
    padding: 5px;
    border-bottom: solid 1px #F1F1F1;
}

.gallery-image{
    width: 100%; height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: 0.4s;

}
.gallery-image:hover{
    cursor: pointer;
}

.zoom{
 transition: 0.4s;   
}

.zoom:hover{
  transform: scale(1.1);
}  


.link:hover{
    color: #3498DB;
}

.profile{
    width: 100%;
    border-radius: 15px;
    margin: 3px;
}


/* Responsive CSS Here */
@media screen and (max-width: 950px) { 

.logo{
    height: 40px;
}

 
}



nav .navbar-nav li a{
  color: #fff !important;
  }


  nav .navbar-nav li a:hover{
  color: #fafafa  !important;
  }

  .dropdown-menu{
    background-color: #07324E;
  }

  .dropdown-item:hover{
    background-color: #1a1a1a;
  }


  .header-design{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: 0.4s;
}




